home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / compiler / consts.py < prev    next >
Text File  |  2008-10-05  |  401b  |  22 lines

  1. # operation flags
  2. OP_ASSIGN = 'OP_ASSIGN'
  3. OP_DELETE = 'OP_DELETE'
  4. OP_APPLY = 'OP_APPLY'
  5.  
  6. SC_LOCAL = 1
  7. SC_GLOBAL = 2
  8. SC_FREE = 3
  9. SC_CELL = 4
  10. SC_UNKNOWN = 5
  11.  
  12. CO_OPTIMIZED = 0x0001
  13. CO_NEWLOCALS = 0x0002
  14. CO_VARARGS = 0x0004
  15. CO_VARKEYWORDS = 0x0008
  16. CO_NESTED = 0x0010
  17. CO_GENERATOR = 0x0020
  18. CO_GENERATOR_ALLOWED = 0
  19. CO_FUTURE_DIVISION = 0x2000
  20. CO_FUTURE_ABSIMPORT = 0x4000
  21. CO_FUTURE_WITH_STATEMENT = 0x8000
  22.